github.com/klauspost/compress/zstd.betterFastEncoderDict.dictLongTable (field)

11 uses

	github.com/klauspost/compress/zstd (current package)
		enc_better.go#L49: 	dictLongTable        []prevEntry
		enc_better.go#L1143: 	if len(e.dictLongTable) != len(e.longTable) || dictChanged {
		enc_better.go#L1144: 		if len(e.dictLongTable) != len(e.longTable) {
		enc_better.go#L1145: 			e.dictLongTable = make([]prevEntry, len(e.longTable))
		enc_better.go#L1147: 			clear(e.dictLongTable)
		enc_better.go#L1152: 			e.dictLongTable[h] = prevEntry{
		enc_better.go#L1154: 				prev:   e.dictLongTable[h].offset,
		enc_better.go#L1162: 				e.dictLongTable[h] = prevEntry{
		enc_better.go#L1164: 					prev:   e.dictLongTable[h].offset,
		enc_better.go#L1213: 			copy(e.longTable[:], e.dictLongTable)
		enc_better.go#L1223: 				copy(e.longTable[i*shardSize:(i+1)*shardSize], e.dictLongTable[i*shardSize:(i+1)*shardSize])